From 894e8107acaee5fc5cb9b1dde0b0d289d1de3359 Mon Sep 17 00:00:00 2001 From: dundargoc <33953936+dundargoc@users.noreply.github.com> Date: Mon, 8 Apr 2024 19:46:39 +0200 Subject: [PATCH] build: remove unnecessary policy check (#262) Minimum version is 3.5 and policy CMP0048 was introduced in 3.0, meaning that it will always be set to `NEW`. --- CMakeLists.txt | 3 --- 1 file changed, 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 67bd9fa..0d66523 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,9 +4,6 @@ include (utils.cmake) disallow_intree_builds() -if (POLICY CMP0048) - cmake_policy (SET CMP0048 NEW) -endif () project (utf8proc VERSION 2.9.0 LANGUAGES C) # This is the ABI version number, which may differ from the -- 2.30.2